home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / pbmplus / pgm / psidtopgm.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  3KB  |  135 lines

  1. /* psidtopgm.c - convert PostScript "image" data into a portable graymap
  2. **
  3. ** Copyright (C) 1989 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include "pgm.h"
  14.  
  15. static int gethexit ARGS(( FILE* ifp ));
  16.  
  17. void
  18. main( argc, argv )
  19. int argc;
  20. char* argv[];
  21.     {
  22.     FILE* ifp;
  23.     gray* grayrow;
  24.     register gray* gP;
  25.     int argn, row;
  26.     register int col, val;
  27.     int maxval;
  28.     int rows, cols, bitspersample;
  29.     char* usage = "<width> <height> <bits/sample> [imagedata]";
  30.  
  31.     pgm_init( &argc, argv );
  32.  
  33.     argn = 1;
  34.  
  35.     if ( argn + 3 > argc )
  36.     pm_usage( usage );
  37.  
  38.     cols = atoi( argv[argn++] );
  39.     rows = atoi( argv[argn++] );
  40.     bitspersample = atoi( argv[argn++] );
  41.     if ( cols <= 0 || rows <= 0 || bitspersample <= 0 )
  42.     pm_usage( usage );
  43.  
  44.     if ( argn < argc )
  45.     {
  46.     ifp = pm_openr( argv[argn] );
  47.     ++argn;
  48.     }
  49.     else
  50.     ifp = stdin;
  51.  
  52.     if ( argn != argc )
  53.     pm_usage( usage );
  54.  
  55.     maxval = pm_bitstomaxval( bitspersample );
  56.     if ( maxval > PGM_MAXMAXVAL )
  57.     pm_error(
  58.         "bits/sample is too large - try reconfiguring with PGM_BIGGRAYS" );
  59.  
  60.     pgm_writepgminit( stdout, cols, rows, (gray) maxval, 0 );
  61.     grayrow = pgm_allocrow( ( cols + 7 ) / 8 * 8 );
  62.     for ( row = 0; row < rows; ++row)
  63.     {
  64.     for ( col = 0, gP = grayrow; col < cols; )
  65.         {
  66.         val = gethexit( ifp ) << 4;
  67.         val += gethexit( ifp );
  68.         switch ( bitspersample )
  69.         {
  70.         case 1:
  71.         *gP++ = val >> 7;
  72.         *gP++ = ( val >> 6 ) & 0x1;
  73.         *gP++ = ( val >> 5 ) & 0x1;
  74.         *gP++ = ( val >> 4 ) & 0x1;
  75.         *gP++ = ( val >> 3 ) & 0x1;
  76.         *gP++ = ( val >> 2 ) & 0x1;
  77.         *gP++ = ( val >> 1 ) & 0x1;
  78.         *gP++ = val & 0x1;
  79.         col += 8;
  80.         break;
  81.  
  82.         case 2:
  83.         *gP++ = val >> 6;
  84.         *gP++ = ( val >> 4 ) & 0x3;
  85.         *gP++ = ( val >> 2 ) & 0x3;
  86.         *gP++ = val & 0x3;
  87.         col += 4;
  88.         break;
  89.  
  90.         case 4:
  91.         *gP++ = val >> 4;
  92.         *gP++ = val & 0xf;
  93.         col += 2;
  94.         break;
  95.  
  96.         case 8:
  97.         *gP++ = val;
  98.         ++col;
  99.         break;
  100.  
  101.         default:
  102.         pm_error( "bitspersample of %d not supported", bitspersample );
  103.         }
  104.         }
  105.     pgm_writepgmrow( stdout, grayrow, cols, (gray) maxval, 0 );
  106.     }
  107.     pm_close( ifp );
  108.     pm_close( stdout );
  109.  
  110.     exit( 0 );
  111.     }
  112.  
  113. static int
  114. gethexit( ifp )
  115. FILE* ifp;
  116.     {
  117.     register int i;
  118.     register char c;
  119.  
  120.     for ( ; ; )
  121.     {
  122.     i = getc( ifp );
  123.     if ( i == EOF )
  124.         pm_error( "EOF / read error" );
  125.     c = (char) i;
  126.     if ( c >= '0' && c <= '9' )
  127.         return c - '0';
  128.     else if ( c >= 'A' && c <= 'F' )
  129.         return c - 'A' + 10;
  130.     else if ( c >= 'a' && c <= 'f' )
  131.         return c - 'a' + 10;
  132.     /* Else ignore - whitespace. */
  133.     }
  134.     }
  135.